home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
El Mac 9
/
El Mac 9.iso
/
Shareware
/
Demos
/
Igor Demo Pro
/
1 PutContentsIn Igor Pro Folder
/
WaveMetrics Procedures
/
Graphing
/
AddPlotFrame
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1994-02-18
|
314 b
|
11 lines
|
[
TEXT/IGR0
]
| This macro draws a rectangle around the plot area of a graph. It is
| provided when you are using stacked or staggered axes and also want
| a frame.
|
Macro AddPlotFrame()
SetDrawLayer UserBack
SetDrawEnv xcoord= prel,ycoord= prel,fillpat= 0
DrawPoly 0,0,1,1,{0,0,0,1,1,1,1,0,0,0}
SetDrawLayer UserFront
End